.swiper-contione {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-top: 100px;
}

.swiper {
	width: 200%;
	transition: all 1s ease;
}

.swiper-item {
	width: 50%;
	float: left;
	position: relative;
}

.swiper-item img {
	width: 100%;
}

.swiper-point {
	width: 100%;
	height: 40px;
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.point {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	margin-right: 5px;
	float: left;
}

.point.active {
	background: #fff;
}

.swiper-left {
	width: 60px;
	height: 100%;
	position: absolute;
	top: 0;
	left: -60px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
}

.swiper-right {
	width: 60px;
	height: 100%;
	position: absolute;
	top: 0;
	right: -60px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
}

.swiper-left img,
.swiper-right img {
	cursor: pointer;
}

.swiper-contione:hover .swiper-left {
	left: 0;
}

.swiper-contione:hover .swiper-right {
	right: 0;
}
